home *** CD-ROM | disk | FTP | other *** search
/ AMIGA-CD 2 / Amiga-CD - Volume 2.iso / ungepackte_daten / 1992 / 10 / 02 / d-tector / quellcode.ampk / BasicMacros.i next >
Encoding:
Text File  |  1995-06-01  |  1002 b   |  44 lines

  1. ******************************************************************************************
  2. *****    $VER: BasicMacros 1.2 (02.05.92)
  3. *****    Written by B.Folgmann for Macro68
  4. ******************************************************************************************
  5.  
  6. ******************************************************************************************
  7. *****    CONSTANTS
  8. ******************************************************************************************
  9.  
  10. *****    Booleans
  11.  
  12. TRUE            =    -1
  13. FALSE            =    0
  14.  
  15. *****    Command Sequence Introducer
  16.  
  17. CSI            =    $9B
  18.  
  19. ******************************************************************************************
  20. *****    MACROS
  21. ******************************************************************************************
  22.  
  23. *****    Lib calls
  24.  
  25. CALL        MACRO
  26.             jsr    (_LVO\1,a6)
  27.         ENDM
  28.  
  29. CALLRET        MACRO
  30.             jmp    (_LVO\1,a6)
  31.         ENDM
  32.  
  33. *****     String definitions
  34.  
  35. CSTRING        MACRO
  36.             dc.b    \1,0
  37.         ENDM
  38.  
  39. BSTRING        MACRO
  40.             dc.b    .StringEnd\@-.StringStart\@
  41. .StringStart\@        dc.b    \1
  42. .StringEnd\@
  43.         ENDM
  44.